home *** CD-ROM | disk | FTP | other *** search
/ Chip 2000 October / CHIP Turkiye Ekim 2000.iso / prog / naps / 04 / setup.exe / Gnucleus / ViewDebug.h < prev    next >
Encoding:
C/C++ Source or Header  |  2000-06-24  |  1.6 KB  |  69 lines

  1. #if !defined(AFX_VIEWDEBUG_H__A2D4CDE5_22B4_11D4_ACF2_00A0CC533D52__INCLUDED_)
  2. #define AFX_VIEWDEBUG_H__A2D4CDE5_22B4_11D4_ACF2_00A0CC533D52__INCLUDED_
  3.  
  4. #if _MSC_VER > 1000
  5. #pragma once
  6. #endif // _MSC_VER > 1000
  7. // ViewDebug.h : header file
  8. //
  9.  
  10. /////////////////////////////////////////////////////////////////////////////
  11. // CViewDebug form view
  12.  
  13. #ifndef __AFXEXT_H__
  14. #include <afxext.h>
  15. #endif
  16.  
  17. class CViewDebug : public CFormView
  18. {
  19. protected:
  20.     CViewDebug();           // protected constructor used by dynamic creation
  21.     DECLARE_DYNCREATE(CViewDebug)
  22.  
  23. // Form Data
  24. public:
  25.     //{{AFX_DATA(CViewDebug)
  26.     enum { IDD = IDD_DEBUG };
  27.     CRichEditCtrl    m_ebLog;
  28.     //}}AFX_DATA
  29.  
  30. // Attributes
  31. public:
  32.     UINT UpdateTimer;
  33.     int Strike;
  34.  
  35. // Operations
  36. public:
  37.  
  38. // Overrides
  39.     // ClassWizard generated virtual function overrides
  40.     //{{AFX_VIRTUAL(CViewDebug)
  41.     public:
  42.     virtual void OnInitialUpdate();
  43.     protected:
  44.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  45.     //}}AFX_VIRTUAL
  46.  
  47. // Implementation
  48. protected:
  49.     virtual ~CViewDebug();
  50. #ifdef _DEBUG
  51.     virtual void AssertValid() const;
  52.     virtual void Dump(CDumpContext& dc) const;
  53. #endif
  54.  
  55.     // Generated message map functions
  56.     //{{AFX_MSG(CViewDebug)
  57.     afx_msg void OnButtonSendping();
  58.     afx_msg void OnTimer(UINT nIDEvent);
  59.     //}}AFX_MSG
  60.     DECLARE_MESSAGE_MAP()
  61. };
  62.  
  63. /////////////////////////////////////////////////////////////////////////////
  64.  
  65. //{{AFX_INSERT_LOCATION}}
  66. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  67.  
  68. #endif // !defined(AFX_VIEWDEBUG_H__A2D4CDE5_22B4_11D4_ACF2_00A0CC533D52__INCLUDED_)
  69.